home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010921-20020314 / 000085_grinder@no.spam.maam.com_Sat Oct 27 11:23:56 EDT 2001.msg < prev    next >
Text File  |  2020-01-01  |  3KB  |  101 lines

  1. Article: 12898 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!phl-feed.news.verio.net!iad-peer.news.verio.net!news.verio.net!news.harvard.edu!purdue!news.bu.edu!bloom-beacon.mit.edu!pln-e!spln!dex!extra.newsguy.com!newsp.newsguy.com!enews3
  3. From: "Grinder" <grinder@no.spam.maam.com>
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: K95 Connection Difficulties
  6. Date: Fri, 26 Oct 2001 20:43:37 -0500
  7. Organization: http://extra.newsguy.com
  8. Lines: 84
  9. Message-ID: <9rd3nb02smd@enews3.newsguy.com>
  10. NNTP-Posting-Host: 216-166-242-228.grics.net
  11. X-Priority: 3
  12. X-MSMail-Priority: Normal
  13. X-Newsreader: Microsoft Outlook Express 5.50.4522.1200
  14. X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:12898
  16.  
  17. The succeeding text intended to be something more coherent than
  18. a laundry list of my attempts to resolve a connection issue.
  19. >From this vantage, though, it's all useful information and I
  20. realize that it's the big picture that _I'm missing.
  21.  
  22. _________
  23.  
  24. I'm currently engaged in deploying an application that utilizes
  25. the latest version of K95.  Of the 300 sites, we're in about 50.
  26. 2 of these sites are unable to reliably connect to their
  27. intended server, but share a common pattern that perhaps you'll
  28. recognize.
  29.  
  30. If we first connect to the server with HyperTerminal, K95 will
  31. execute the script and perform like a champ.  If not, it will
  32. fail in various ways--either "you must set port or host..." or
  33. "no carrier detected" are popular.
  34.  
  35. The text I've read concerning K95cinit.exe seems like it might
  36. be related, but there's a number of variations:
  37.  
  38. 1)  One machine is Windows ME--the text suggests it's
  39.      a Windows 9x problem.
  40.  
  41. 2)  We've tried connections (on both machines) using
  42.      TAPI as well as port and modemtype, but the results
  43.      are invariant.
  44.  
  45. 3)  The difficulty that K95cinit was intended to resolve, is no
  46.      longer an issue with K95. (Fixed bug 79, maybe)
  47.  
  48. A copy of K95cinit is enroute to the difficult sites, and we
  49. should be able to see if this replicates whatever HyperTerminal
  50. is doing.
  51.  
  52. Also, line quality checks are being performed.  In both cases,
  53. though, these workstation have recently (within 3 months)
  54. transmitted data to a different server using a different client
  55. application.
  56.  
  57. Kermit-95 is being invoked with a ShellExecute:
  58.  
  59.    K95 -# 26
  60.  
  61. and is being monitored in a lazy (3 sec) loop by
  62. GetExitCodeProcess().
  63.  
  64. Some specifics (tell me what would help and I'll get it):
  65.  
  66. Machine 1
  67. Windows 98
  68. External US Robotics 56K
  69. no weird peripherals
  70. sufficient hd and memory
  71.  
  72. Machine 2
  73. Windows ME
  74. Internal Telepath X2 (winmodem)
  75. no weird peripherals
  76. sufficient hd and memory
  77.  
  78. Here's a typical tapi-style script that I'm using (the rest is
  79. boilerplate login and swap files stuff):
  80.  
  81. ; Account Configuration
  82. define \%n 1-877-222-2222
  83. define \%u yyyyyyy
  84. define \%p xxxxxxx
  85.  
  86. ; Modem Configuration
  87. set modem type none
  88. set tapi line Creative_Modem_Blaster_Flash56_PCI_DI5630-4
  89. set modem type tapi
  90.  
  91. ; --------------------------------------------------------------
  92. --------
  93. ; Begin template: k95.ksc
  94. ; --------------------------------------------------------------
  95. --------
  96. cls
  97.  
  98.  
  99.  
  100.  
  101.